Abstract
Financial Portal.Hello, Website!
For more information about simple R Markdown websites, please read the documentation at https://bookdown.org/yihui/rmarkdown/rmarkdown-site.html.
Please also note that simple R Markdown sites are not based on blogdown. They are probably good for websites with only a few Rmd documents. For larger-scale and more sophisticated websites (such as blogs), you may want to use blogdown instead: https://github.com/rstudio/blogdown.
library(trelliscopejs)
library(ggplot2)
library(gapminder)
qplot(year, lifeExp, data = gapminder) +
xlim(1948, 2011) + ylim(10, 95) + theme_bw() +
facet_trelliscope(~ country + continent, nrow = 2, ncol = 7, width = 300, path = ".")
print(params$year)
## [1] 2018
print(params$region)
## [1] "Europe"
print(params$printcode)
## [1] TRUE
set.seed(2020)
x <- seq(0,100,by=0.5)
y <- (50-x)^2+rnorm(length(x),sd=100)
curvy <- data.frame(x,y)
ggplot(curvy, aes(x,y)) + geom_line()

library(reactable)
mainTable <- data.table::fread("data/mainTable.csv")
reactable(mainTable, groupBy = "Exchange", paginateSubRows = TRUE)
Copyright © 2016 Skynet, Inc. All rights reserved.